home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung 2
/
Power-Programmierung CD 2 (Tewi)(1994).iso
/
c
/
library
/
dos
/
window
/
winclip
/
exam128.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-03-12
|
249 b
|
11 lines
#include "window.h"
main()
{
int row,col;
MoveCursor(10,15);
GetCursorPosition(&row,&col,0);
WindowInitializeSystem();
VideoPrintf("\nThe row of the cursor is %d\nThe column is %d",
row,col);
}